All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.ClipView

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Responder
                   |
                   +----com.apple.alpha.app.View
                           |
                           +----com.apple.alpha.app.ClipView

public class ClipView
extends View
This class wraps the Objective-C class NSClipView.


Constructor Index

 o ClipView()
This default constructor is equivalent to Objective-C's [[NSClipView alloc] init].
 o ClipView(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o ClipView(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.
 o ClipView(Rect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Method Index

 o autoscroll(Event)
A wrapper for the - autoscroll: Objective-C instance method.
 o backgroundColor()
A wrapper for the - backgroundColor Objective-C instance method.
 o constrainScrollPoint(Point)
A wrapper for the - constrainScrollPoint: Objective-C instance method.
 o copiesOnScroll()
A wrapper for the - copiesOnScroll Objective-C instance method.
 o documentCursor()
A wrapper for the - documentCursor Objective-C instance method.
 o documentRect()
A wrapper for the - documentRect Objective-C instance method.
 o documentView()
A wrapper for the - documentView Objective-C instance method.
 o documentVisibleRect()
A wrapper for the - documentVisibleRect Objective-C instance method.
 o scrollToPoint(Point)
A wrapper for the - scrollToPoint: Objective-C instance method.
 o setBackgroundColor(Color)
A wrapper for the - setBackgroundColor: Objective-C instance method.
 o setCopiesOnScroll(boolean)
A wrapper for the - setCopiesOnScroll: Objective-C instance method.
 o setDocumentCursor(Cursor)
A wrapper for the - setDocumentCursor: Objective-C instance method.
 o setDocumentView(View)
A wrapper for the - setDocumentView: Objective-C instance method.
 o viewBoundsChanged(Notification)
A wrapper for the - viewBoundsChanged: Objective-C instance method.
 o viewFrameChanged(Notification)
A wrapper for the - viewFrameChanged: Objective-C instance method.

Constructors

 o ClipView
 protected ClipView(boolean shouldAllocate,
                    int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o ClipView
 public ClipView()
This default constructor is equivalent to Objective-C's [[NSClipView alloc] init].

 o ClipView
 public ClipView(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

 o ClipView
 public ClipView(Rect frameRect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Methods

 o setBackgroundColor
 public native void setBackgroundColor(Color color)
A wrapper for the - setBackgroundColor: Objective-C instance method.

 o backgroundColor
 public native Color backgroundColor()
A wrapper for the - backgroundColor Objective-C instance method.

 o setDocumentView
 public native void setDocumentView(View aView)
A wrapper for the - setDocumentView: Objective-C instance method.

 o documentView
 public native Object documentView()
A wrapper for the - documentView Objective-C instance method.

 o documentRect
 public native Rect documentRect()
A wrapper for the - documentRect Objective-C instance method.

 o setDocumentCursor
 public native void setDocumentCursor(Cursor anObj)
A wrapper for the - setDocumentCursor: Objective-C instance method.

 o documentCursor
 public native Cursor documentCursor()
A wrapper for the - documentCursor Objective-C instance method.

 o documentVisibleRect
 public native Rect documentVisibleRect()
A wrapper for the - documentVisibleRect Objective-C instance method.

 o viewFrameChanged
 public native void viewFrameChanged(Notification notification)
A wrapper for the - viewFrameChanged: Objective-C instance method.

 o viewBoundsChanged
 public native void viewBoundsChanged(Notification notification)
A wrapper for the - viewBoundsChanged: Objective-C instance method.

 o setCopiesOnScroll
 public native void setCopiesOnScroll(boolean flag)
A wrapper for the - setCopiesOnScroll: Objective-C instance method.

 o copiesOnScroll
 public native boolean copiesOnScroll()
A wrapper for the - copiesOnScroll Objective-C instance method.

 o autoscroll
 public native boolean autoscroll(Event theEvent)
A wrapper for the - autoscroll: Objective-C instance method.

Overrides:
autoscroll in class View
 o constrainScrollPoint
 public native Point constrainScrollPoint(Point newOrigin)
A wrapper for the - constrainScrollPoint: Objective-C instance method.

 o scrollToPoint
 public native void scrollToPoint(Point newOrigin)
A wrapper for the - scrollToPoint: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index